Update all non-major dependencies#4591
Conversation
|
|
Pushed a commit that makes this bundle build-clean on JDK 21. AI assisted of course... Summary of what changed: 🔻 Reverted the RAT upgrade
🔧 Fixed breakage from ECJ 3.46ECJ 3.46 tightened nested generic-method inference and rejected 📝 ChangelogTitle now lists each concrete dependency bump (RAT excluded since reverted). |
4556b6b to
1e93702
Compare
…icenses - Revert apache-rat 0.18 -> 0.15 (rat 0.18 removes FileDocument API used by validate-source-patterns.gradle); to be handled separately - Fix SolrMatchers.subListMatches signature for stricter ECJ 3.46 generic inference (Matcher<Iterable<? extends T>>), unblocking TestRecovery - Regenerate gradle.lockfile + license sha1s (missing from the original bot PR) - List concrete dependency bumps in the changelog title
The error-prone 2.50.0 NotJavadoc check flags Javadoc comments on methods inside local/anonymous classes, which cannot be documented with Javadoc. Convert the two /** */ comments to regular /* */ comments in SolrDocument.java.
1e93702 to
fa5eece
Compare
Use URLEncoder.encode(String, Charset) instead of the deprecated charset-name overload, removing the now-unnecessary UnsupportedEncodingException handling.
Error Prone 2.50.0 introduced new/stricter bug patterns (ReferenceEquality,
JdkObsolete, NotJavadoc) that require source-level follow-up, which does not
belong in the bulk "all non-major dependencies" PR. Downgrade error_prone back
to the main-branch version (2.41.0), revert the source fixes that were only
needed for 2.50.0 (SolrParams, SolrDocument), and refresh lockfiles/licenses.
Add a dedicated "Error Prone" Renovate group (com.google.errorprone) so future
compiler-check upgrades land in their own PR for dedicated review. Restore the
monthly Renovate schedule ("before 9am on the first day of the month").
The 2.50.0 upgrade plus all source fixes is preserved on branch
errorprone-2.50.0-upgrade for a future dedicated PR.
randomizedtesting 2.9.1 changed the test name format from
"testFoo {seed=[...]}" to "testFoo[seed=[...]]" (no space). getSaferTestName
only stripped at the first space, so the seed leaked into collection names
derived from it, failing TestPullReplica/TestTlogReplica.testCreateDelete with
invalid collection names. Cut at the first space or '[', matching the branch_9x
fix (c566e61).
This PR contains the following updates:
4.9.8→4.10.212.1.3→12.2.21.16.3→1.17.01.17.126.0.2→26.1.02.41.0→2.50.02.41.0→2.50.03.39.0→3.46.08.3.0→8.7.08.8.03.54.0→3.55.12.8.4→2.9.14.8.1→4.8.61.18.8-jdk5→1.18.91.18.8-jdk5→1.18.90.53.0→0.54.03.2.3→3.2.40.15→0.18Release Notes
spotbugs/spotbugs (com.github.spotbugs:spotbugs-annotations)
v4.10.2Compare Source
Build
v4.10.1Compare Source
Build
langchain4j/langchain4j (dev.langchain4j:langchain4j-bom)
v1.17.0: and 1.17.0-beta27Compare Source
Notable Changes
Other Changes
@SubAgentwith the array form by @thswlsqls in #5473df4cb1cby @renovate[bot] in #5586New Contributors
Full Changelog: langchain4j/langchain4j@1.16.3...1.17.0
JetBrains/java-annotations (org.jetbrains:annotations)
v26.1.0Compare Source
@NotNullByDefaultis not experimental anymore.v26.0.2-1Compare Source
google/error-prone (com.google.errorprone:error_prone_core)
v2.50.0: Error Prone 2.50.0New checks:
BoxingComparator: Detect implicitly-boxing Comparator.comparing key extractorsExposedPrivateType: Discourage references to private member classes from non-private APIsJUnitMethodInvoked: Discourage directly invoking JUnit test methodsListRemoveAmbiguous: Detect ambiguous calls toList.remove(int|Integer)PreferTestParameter: suggests using@TestParameterinstead of@TestParametersfor exhaustive boolean and enum parameters on single-element parameterized testsRecordComponentAccessorAnnotationConflict: Detect conflicts between record components and explicit accessor methodsRecordComponentOverride: Discourage@Overrideon record component declarations that don't overrideanything
ThrowableEqualsHashCode: Discourage overridingThrowable.equals()andhashCode()Closed issues: #5553, #5649, #5778
Full changelog: google/error-prone@v2.49.0...v2.50.0
v2.49.0: Error Prone 2.49.0This release includes several changes to
MatcherAPIs, and removed some deprecated or problematic APIs:MethodMatchers.withSignatureAPI, which relies on fragiletoStringbehaviour. Alternatives for matching on method signatures with varargs and type parameters were added ina98a1c5.variableType(Matcher)API.Matchers.variableType(Matcher)usesVariableTree#getTypeto match variable types, which own't work for lambda parameters with inferred types after JDK-8268850. The recommended replacement isvariableType(TypePredicate).enclosingPackagereturn an optional. Module elements are not enclosed by a package, checks usingenclosingPackageshouldn't assume an enclosing package exists when processing arbitrary elements.FieldMatchersAPI, similar toMethodMatchers(1dd9c3a).New checks:
AssertThrowsBlockToExpression: Discourage unnecessary block lambdas inassertThrows.AssertThrowsMinimizer: Suggest minimizing the amount of logic inassertThrows.MemorySegmentReferenceEquality: Discourage using reference equality forMemorySegments.PreferThrowsTag: Recommends using@throwsinstead of the legacy@exceptionjavadoc tag.RecordAccessorInCompactConstructor: detect record accessors inside the compact canonical ctors, which read uninitialized fields.Closed issues: #2283, #3503, #5210, #5289, #5548, #5548, #5554, #5609, #5614, #5656
Full changelog: google/error-prone@v2.48.0...v2.49.0
v2.48.0: Error Prone 2.48.0Changes:
@-files) (8e84edf)New checks:
AvoidValueSetterUnnecessarySemicolonClosed issues: #5529, #5537, #5522, #5521
Full changelog: google/error-prone@v2.47.0...v2.48.0
v2.47.0: Error Prone 2.47.0New checks:
InterruptedInCatchBlock: Detect accidental calls toThread.interrupted()inside ofcatch(InterruptedException e)blocks.RefactorSwitch: Refactorings to simplify arrow switchesUnnamedVariable: Rename unused variables to_Closed issues: #1811, #4168, #5459, #5460
Full changelog: google/error-prone@v2.46.0...v2.47.0
v2.46.0: Error Prone 2.46.0Changes:
-XDaddTypeAnnotationsToSymbol=trueis now required for Error Prone invocations on JDK 21, to enable the javac fix for JDK-8225377: type annotations are not visible to javac plugins across compilation boundaries. See #5426 for details.valueattribute from@IncompatibleModifiersand@RequiredModifiers(#2122)EndPosTable,DiagnosticPosition) (5440bb4,06c2905,f3915ec)New checks:
DuplicateAssertion: detect duplicated assertion lines where the argument toassertThatis pureIfChainToSwitch: suggest converting chains of if-statements into arrow switchesScannerUseDelimiter: discourageScanner.useDelimiter("\\A")AddNullMarkedToClass: refactoring to add@NullMarkedannotation to top level classesFull changelog: google/error-prone@v2.45.0...v2.46.0
v2.45.0: Error Prone 2.45.0Changes:
New checks:
AssertSameIncompatible: Detect calls toassertSameand similar assertions, where the calls are guaranteed to either succeed or fail.FormatStringShouldUsePlaceholders: Suggests using a format string instead of string concatenation operations on format methodsClosed issues: #5335
Full changelog: google/error-prone@v2.44.0...v2.45.0
v2.44.0: Error Prone 2.44.0Changes
LabelledBreakTargetis now an errorClosed issues: #5218, #5278
Full changelog: google/error-prone@v2.43.0...v2.44.0
v2.43.0: Error Prone 2.43.0The minimum supported JDK version to run Error Prone is now JDK 21 (#4867).
Changes:
-XepPatchChecksnow skips disabled checks (#4943)AndroidJdkLibsCheckerhas been removed, the recommended replacement for Android code is Android Lint's NewApi checkNew checks:
NullNeedsCastForVarargs: Detect calls that incorrectly passes anullarray instead of anullelement.RedundantNullCheck: detect checks on expressions that are non-null.Closed issues: #4943, #5102, #5107, #5121, #5158, #5217, #5239
Full changelog: google/error-prone@v2.42.0...v2.43.0
v2.42.0: Error Prone 2.42.0New checks:
ExplicitArrayForVarargs: discourage unnecessary explicit construction of an array to provide varargs.FloggerPerWithoutRateLimit: discourage Flogger'sperUniquewithout rate limitingStringJoin: BanString.join(CharSequence)andString.join(CharSequence, CharSequence)ThreadBuilderNameWithPlaceholder: Do not allow placeholders inThread.Builder.name(String)orname(String, int).Changes:
ASTHelpers.asFlagSethas changed. The previous type wasEnumSet<Flags.Flag>, whereFlags.Flagis an enum in the javac classFlags. A recent JDK change has replaced that enum with a new top-level enum calledFlagsEnum. It is not possible to changeASTHelpers.asFlagSetin a way that would be type-safe and compatible with the enums from JDKs both before and after the change. Instead, the method now returnsImmutableSet<String>, where the strings come from thetoString()of the enum constants. That means they are"native","abstract", etc.IO.print[ln]()inSystemOut.Full changelog: google/error-prone@v2.41.0...v2.42.0
raphw/byte-buddy (net.bytebuddy:byte-buddy-agent)
v1.18.9Plugin.Engine.v1.18.8ben-manes/caffeine (com.github.ben-manes.caffeine:caffeine)
v3.2.4: 3.2.4Configuration
📅 Schedule: (UTC)
* * * * *)🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR has been generated by Renovate Bot